From: Keir Fraser Date: Mon, 19 Oct 2009 09:55:46 +0000 (+0100) Subject: Per-domain switch to disable oos shadow page tables X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~13205 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/%22bookmarks://%22Dat/%22http:/www.example.com/cgi/%22https:/%22bookmarks:/%22Dat?a=commitdiff_plain;h=90abd2437ad7cd010b2ad63e6b4b1a6571c67ab6;p=xen.git Per-domain switch to disable oos shadow page tables Signed-off-by: Juergen Gross --- diff --git a/tools/python/xen/xend/XendConfig.py b/tools/python/xen/xend/XendConfig.py index 8c70fab612..84f1f0f556 100644 --- a/tools/python/xen/xend/XendConfig.py +++ b/tools/python/xen/xend/XendConfig.py @@ -178,6 +178,7 @@ XENAPI_PLATFORM_CFG_TYPES = { 'xen_platform_pci': int, "gfx_passthru": int, 'description': str, + 'oos' : int, } # Xen API console 'other_config' keys. diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index e0891b46f3..98214d92ce 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -2419,7 +2419,11 @@ class XendDomainInfo: s3_integrity = 0 if self.info.has_key('s3_integrity'): s3_integrity = self.info['s3_integrity'] - flags = (int(hvm) << 0) | (int(hap) << 1) | (int(s3_integrity) << 2) + + oos = self.info['platform'].get('oos', 1) + oos_off = 1 - oos + + flags = (int(hvm) << 0) | (int(hap) << 1) | (int(s3_integrity) << 2) | (int(oos_off) << 3) try: self.domid = xc.domain_create( diff --git a/tools/python/xen/xm/create.py b/tools/python/xen/xm/create.py index e47db2f140..4c71587d3f 100644 --- a/tools/python/xen/xm/create.py +++ b/tools/python/xen/xm/create.py @@ -610,6 +610,11 @@ gopts.var('s3_integrity', val='TBOOT_MEMORY_PROTECT', use="""Should domain memory integrity be verified during S3? (0=protection is disabled; 1=protection is enabled.""") +gopts.var('oos', val='OOS', + fn=set_int, default=1, + use="""Should out-of-sync shadow page tabled be enabled? + (0=OOS is disabled; 1=OOS is enabled.""") + gopts.var('cpuid', val="IN[,SIN]:eax=EAX,ebx=EBX,ecx=ECX,edx=EDX", fn=append_value, default=[], use="""Cpuid description.""") @@ -990,7 +995,7 @@ def configure_hvm(config_image, vals): 'vnc', 'vncdisplay', 'vncunused', 'vncconsole', 'vnclisten', 'sdl', 'display', 'xauthority', 'rtc_timeoffset', 'monitor', 'acpi', 'apic', 'usb', 'usbdevice', 'keymap', 'pci', 'hpet', - 'guest_os_type', 'hap', 'opengl', 'cpuid', 'cpuid_check', + 'guest_os_type', 'hap', 'oos', 'opengl', 'cpuid', 'cpuid_check', 'viridian', 'xen_extended_power_mgmt', 'pci_msitranslate', 'vpt_align', 'pci_power_mgmt', 'xen_platform_pci', 'gfx_passthru', 'description' ] @@ -1038,6 +1043,8 @@ def make_config(vals): config.append(['backend', ['tpmif']]) if vals.localtime: config.append(['localtime', vals.localtime]) + if vals.oos: + config.append(['oos', vals.oos]) config_image = configure_image(vals) if vals.bootloader: diff --git a/tools/python/xen/xm/xenapi_create.py b/tools/python/xen/xm/xenapi_create.py index d8e9dc54c7..1f86357170 100644 --- a/tools/python/xen/xm/xenapi_create.py +++ b/tools/python/xen/xm/xenapi_create.py @@ -1073,6 +1073,7 @@ class sxp2xml: 'vhpt', 'guest_os_type', 'hap', + 'oos', 'pci_msitranslate', 'pci_power_mgmt', 'xen_platform_pci', diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c index 61a605e19f..d5f216bd26 100644 --- a/xen/arch/x86/domain.c +++ b/xen/arch/x86/domain.c @@ -452,7 +452,7 @@ int arch_domain_create(struct domain *d, unsigned int domcr_flags) #endif /* __x86_64__ */ - if ( (rc = paging_domain_init(d)) != 0 ) + if ( (rc = paging_domain_init(d, domcr_flags)) != 0 ) goto fail; paging_initialised = 1; diff --git a/xen/arch/x86/mm/paging.c b/xen/arch/x86/mm/paging.c index 94b745f0fd..77ed35f02a 100644 --- a/xen/arch/x86/mm/paging.c +++ b/xen/arch/x86/mm/paging.c @@ -636,7 +636,7 @@ static void paging_log_dirty_teardown(struct domain*d) /* CODE FOR PAGING SUPPORT */ /************************************************/ /* Domain paging struct initialization. */ -int paging_domain_init(struct domain *d) +int paging_domain_init(struct domain *d, unsigned int domcr_flags) { int rc; @@ -646,7 +646,7 @@ int paging_domain_init(struct domain *d) /* The order of the *_init calls below is important, as the later * ones may rewrite some common fields. Shadow pagetables are the * default... */ - shadow_domain_init(d); + shadow_domain_init(d, domcr_flags); /* ... but we will use hardware assistance if it's available. */ if ( hap_enabled(d) ) diff --git a/xen/arch/x86/mm/shadow/common.c b/xen/arch/x86/mm/shadow/common.c index 6dfcb7698b..577d97a696 100644 --- a/xen/arch/x86/mm/shadow/common.c +++ b/xen/arch/x86/mm/shadow/common.c @@ -43,7 +43,7 @@ DEFINE_PER_CPU(uint32_t,trace_shadow_path_flags); /* Set up the shadow-specific parts of a domain struct at start of day. * Called for every domain from arch_domain_create() */ -void shadow_domain_init(struct domain *d) +void shadow_domain_init(struct domain *d, unsigned int domcr_flags) { int i; shadow_lock_init(d); @@ -58,6 +58,7 @@ void shadow_domain_init(struct domain *d) #if (SHADOW_OPTIMIZATIONS & SHOPT_OUT_OF_SYNC) d->arch.paging.shadow.oos_active = 0; + d->arch.paging.shadow.oos_off = (domcr_flags & DOMCRF_oos_off) ? 1 : 0; #endif } @@ -3023,7 +3024,7 @@ static void sh_update_paging_modes(struct vcpu *v) #if (SHADOW_OPTIMIZATIONS & SHOPT_OUT_OF_SYNC) /* We need to check that all the vcpus have paging enabled to * unsync PTs. */ - if ( is_hvm_domain(d) ) + if ( is_hvm_domain(d) && !d->arch.paging.shadow.oos_off ) { int pe = 1; struct vcpu *vptr; diff --git a/xen/common/domctl.c b/xen/common/domctl.c index 65ccf2dacf..44a18ab1ec 100644 --- a/xen/common/domctl.c +++ b/xen/common/domctl.c @@ -393,7 +393,7 @@ long do_domctl(XEN_GUEST_HANDLE(xen_domctl_t) u_domctl) if ( supervisor_mode_kernel || (op->u.createdomain.flags & ~(XEN_DOMCTL_CDF_hvm_guest | XEN_DOMCTL_CDF_hap | - XEN_DOMCTL_CDF_s3_integrity)) ) + XEN_DOMCTL_CDF_s3_integrity | XEN_DOMCTL_CDF_oos_off)) ) break; dom = op->domain; @@ -427,6 +427,8 @@ long do_domctl(XEN_GUEST_HANDLE(xen_domctl_t) u_domctl) domcr_flags |= DOMCRF_hap; if ( op->u.createdomain.flags & XEN_DOMCTL_CDF_s3_integrity ) domcr_flags |= DOMCRF_s3_integrity; + if ( op->u.createdomain.flags & XEN_DOMCTL_CDF_oos_off ) + domcr_flags |= DOMCRF_oos_off; ret = -ENOMEM; d = domain_create(dom, domcr_flags, op->u.createdomain.ssidref); diff --git a/xen/include/asm-x86/domain.h b/xen/include/asm-x86/domain.h index 3ecc3bf873..1023c95965 100644 --- a/xen/include/asm-x86/domain.h +++ b/xen/include/asm-x86/domain.h @@ -104,6 +104,7 @@ struct shadow_domain { /* OOS */ int oos_active; + int oos_off; }; struct shadow_vcpu { diff --git a/xen/include/asm-x86/paging.h b/xen/include/asm-x86/paging.h index a83772e85f..fca130b43a 100644 --- a/xen/include/asm-x86/paging.h +++ b/xen/include/asm-x86/paging.h @@ -200,7 +200,7 @@ void paging_vcpu_init(struct vcpu *v); /* Set up the paging-assistance-specific parts of a domain struct at * start of day. Called for every domain from arch_domain_create() */ -int paging_domain_init(struct domain *d); +int paging_domain_init(struct domain *d, unsigned int domcr_flags); /* Handler for paging-control ops: operations from user-space to enable * and disable ephemeral shadow modes (test mode and log-dirty mode) and diff --git a/xen/include/asm-x86/shadow.h b/xen/include/asm-x86/shadow.h index 380c8fd1ef..e7dc66cf09 100644 --- a/xen/include/asm-x86/shadow.h +++ b/xen/include/asm-x86/shadow.h @@ -53,7 +53,7 @@ /* Set up the shadow-specific parts of a domain struct at start of day. * Called from paging_domain_init(). */ -void shadow_domain_init(struct domain *d); +void shadow_domain_init(struct domain *d, unsigned int domcr_flags); /* Setup the shadow-specific parts of a vcpu struct. It is called by * paging_vcpu_init() in paging.c */ diff --git a/xen/include/public/domctl.h b/xen/include/public/domctl.h index 0a8c372796..fb60344505 100644 --- a/xen/include/public/domctl.h +++ b/xen/include/public/domctl.h @@ -60,6 +60,9 @@ struct xen_domctl_createdomain { #define _XEN_DOMCTL_CDF_s3_integrity 2 #define XEN_DOMCTL_CDF_s3_integrity (1U<<_XEN_DOMCTL_CDF_s3_integrity) uint32_t flags; + /* Disable out-of-sync shadow page tables? */ +#define _XEN_DOMCTL_CDF_oos_off 3 +#define XEN_DOMCTL_CDF_oos_off (1U<<_XEN_DOMCTL_CDF_oos_off) }; typedef struct xen_domctl_createdomain xen_domctl_createdomain_t; DEFINE_XEN_GUEST_HANDLE(xen_domctl_createdomain_t); diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h index 3bf3a6aacd..a8fe8de126 100644 --- a/xen/include/xen/sched.h +++ b/xen/include/xen/sched.h @@ -364,6 +364,9 @@ struct domain *domain_create( /* DOMCRF_dummy: Create a dummy domain (not scheduled; not on domain list) */ #define _DOMCRF_dummy 3 #define DOMCRF_dummy (1U<<_DOMCRF_dummy) + /* DOMCRF_oos_off: dont use out-of-sync optimization for shadow page tables */ +#define _DOMCRF_oos_off 4 +#define DOMCRF_oos_off (1U<<_DOMCRF_oos_off) /* * rcu_lock_domain_by_id() is more efficient than get_domain_by_id().